home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_09 / welstead / cwdialgs.h < prev    next >
C/C++ Source or Header  |  1995-05-20  |  537b  |  23 lines

  1. // CWDIALGS.H  Header for pre-defined dialog boxes 
  2.  
  3. #ifndef CWDIALGS_H
  4. #define CWDIALGS_H
  5.  
  6. #define STRICT
  7. #include <windows.h>
  8.  
  9. extern HINSTANCE gdlg_instance;
  10. // This must be set to current instance 
  11. // before using these dialogs.  
  12.  
  13. int string_dialog (HWND Parent,LPCSTR dlg_title,
  14.    LPCSTR descr,int maxlen,void *the_string);
  15.  
  16. int get_file_name_dlg (HWND hWnd,const char *pfilter,
  17.       const char *ptitle_str, char *file_name,
  18.       int max_len);
  19.  
  20. BOOL get_rgb_color (HWND hWnd,COLORREF *init_color);
  21. #endif
  22.  
  23.